home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / awe2-0_1.lha / awe2-0.1 / Src / RCS / FifoSemaphore.h,v < prev    next >
Text File  |  1989-06-25  |  520b  |  43 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    grunwald:1.1; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.09.18.16.42.05;  author grunwald;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @#ifndef FIFO_SEMAPHOREH
  26. #define FIFO_SEMAPHOREH
  27.  
  28. #include "FifoScheduler.h"
  29. #include "Semaphore.h"
  30.  
  31. class FifoSemaphore : public Semaphore
  32. {
  33.     FifoScheduler fifo;
  34.     
  35. public :
  36.  
  37.     FifoSemaphore(int count = 1, bool debug = FALSE);
  38.     virtual ~FifoSemaphore();
  39. };
  40.  
  41. #endif FIFO_SEMAPHOREH
  42. @
  43.